home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000286_news@columbia.edu _Tue Dec 10 10:56:56 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id KAA21769 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 10 Dec 1996 10:56:56 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id KAA21450 for kermit.misc@watsun; Tue, 10 Dec 1996 10:56:55 -0500 (EST)
  4. Path: news.columbia.edu!panix!news.panix.com!usenet
  5. From: Kurt Rosenhagen <kjr@panix.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: dialing macro for dialback modem
  8. Date: Tue, 10 Dec 1996 10:58:13 -0500
  9. Organization: Extratek Inc.
  10. Lines: 63
  11. Message-ID: <32AD8895.41C67EA6@panix.com>
  12. References: <32A88B82.41C67EA6@panix.com> <58heqt$kcd@watsun.cc.columbia.edu> <32AC968D.41C67EA6@panix.com> <58i5kp$2em$1@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: kjr.dialup.access.net
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=us-ascii
  16. Content-Transfer-Encoding: 7bit
  17. X-Mailer: Mozilla 3.01Gold (X11; I; SunOS 4.1.3_U1 sun4m)
  18.  
  19. I'm running C-Kermit 5A(190). I'll try 6.0. Thanks for the help.
  20.  
  21. Kurt
  22.  
  23. Frank da Cruz wrote:
  24. > In article <32AC968D.41C67EA6@panix.com>,
  25. > Kurt Rosenhagen  <kjr@panix.com> wrote:
  26. > : Frank da Cruz wrote:
  27. > : > In article <32A88B82.41C67EA6@panix.com>,
  28. > : > Kurt Rosenhagen  <kjr@panix.com> wrote:
  29. > : > : Ive modified an existing macro for dialing in to a dialback modem. When
  30. > : > : the dialback occurs, an "INPUT" command is executed, and the message
  31. > : > : "Cant condition line for input" appears five times (there are siz input
  32. > : > : commands after dialback). The message "Connecting to cua0" etc apperas,
  33. > : > : script file is finished as kermit now expects input from keyboaard.
  34. > : > :
  35. > : > So this means you are probably using C-Kermit?  Which version?
  36. > : > On which platform?
  37. > : >
  38. > : > Anyway, the trick of handling dialback situations is that you
  39. > : > have to hang up the modem after making the call, so it can call
  40. > : > you back.  If you don't hang it up, it will just get a busy
  41. > : > signal.
  42. > :
  43. > : Sorry, I should have been more complete. I'm running C-Kermit ...
  44. > :
  45. > What version of C-Kermit?
  46. > : ... on a Sparc
  47. > : 10/50 under SunOS 4.1.3. While the dialback is not getting a busy
  48. > : signal, I think the problem is similiar; the answering modem isn't
  49. > : answering until the "INPUT" command times out. I've currently got it
  50. > : kind of working by doing one macro for dialout, then "HANGUP", then
  51. > : another macro for dialback answer (which can't be executed until the
  52. > : modems have finished negotiating). Can this somehow be automated into
  53. > : one macro?
  54. > :
  55. > I'm sure it can be, but I don't have access to your setup to try it.
  56. > I think the problem you had before was that C-Kermit was holding on to
  57. > its end of the original phone call.  The service on the other end hung
  58. > up, but C-Kermit was still trying to use it (e.g. by issuing INPUT
  59. > commands).  But since the other end had hung up, there was no more carrier
  60. > and so the device driver was returning errors when you gave the INPUT,
  61. > OUTPUT, or similar commands, and in any case the modem was not conditioned
  62. > to answer the call-back.
  63. > I'd suggest you install C-Kermit 6.0 on your Sun and then have your script
  64. > use the new ANSWER command.  So in outline, it would look like this:
  65. >   dial xxxxxxx
  66. >   if fail ...
  67. >   (put input/output dialog here)
  68. >   hangup
  69. >   answer xxx  ; xxx = number of seconds to wait for call
  70. >   if fail ...
  71. > At this point, you should have a usable connection.  For info about
  72. > C-Kermit 6.0, see:
  73. >   http://www.columbia.edu/kermit/ck60.html
  74. > - Frank